home *** CD-ROM | disk | FTP | other *** search
- # CVS $Id: autolock.tcl,v 1.1 1995/02/03 17:15:01 zibi Exp $
- #
- # Test of the VtLock command
- #
-
- source tools.tcl
-
- proc lockCB {cbs} {
- sleep 5
- VtUnLock
- }
-
- set ap [VtOpen Lock]
-
-
- set dlog [VtFormDialog $ap.form ]
-
-
- set rc [VtRowColumn $dlog.rc]
-
- VtPushButton $rc.Lock -callback lockCB -autoLock lockCB
-
- VtPushButton $rc.Exit -callback QuitCB
-
- VtShow $dlog
-
- VtMainLoop
-
-